home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / cad / drafix quickcad / PRO400 / MACROS / DELETE.D < prev    next >
Encoding:
Text File  |  1995-01-24  |  247 b   |  7 lines

  1. // delete.d
  2. // macro to delete entities by selection
  3.  
  4. HANDLE    hEnt;
  5.  
  6. while(hEnt = GetEntity("Select entity for deletion", "arc circle curve dimang dimdia dimlin dimord line marker polyirreg polyline polyreg symbol text"))
  7.     DeleteEntity(hEnt);